home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c++
- Path: lade.news.pipex.net!pipex!bt!btcase!Pearl
- From: muthu@mbtpost.agw.bt.co.uk (Muthu Kumar)
- Subject: Re: What is "void CAClass::CBClass::functionname()" ????
- Message-ID: <4gu8qk$e8_001@agw.bt.co.uk>
- Sender: news@btcase.bt.co.uk (USENET News System)
- Organization: MBT
- X-Newsreader: News Xpress Version 1.0 Beta #4
- References: <leetn-2602961058380001@192.43.251.144>
- Date: Tue, 27 Feb 1996 06:37:08 GMT
-
- In article <leetn-2602961058380001@192.43.251.144>,
- leetn@ccmail.apldbio.com (tlee) wrote:
- >Path:
- btcase!bt!btnet!tank.news.pipex.net!pipex!howland.reston.ans.net!newsfeed.inte
- rnetmci.com!primus.ac.net!news.cais.net!news.supernet.net!vivaldi.inoc.dl.nec.
- com!jpgate.inoc.sj.nec.com!nntp-hub.barrnet.net!biosys!NewsWatcher!user
- >From: leetn@ccmail.apldbio.com (tlee)
- >Newsgroups: comp.lang.c++
- >Subject: What is "void CAClass::CBClass::functionname()" ????
- >Message-ID: <leetn-2602961058380001@192.43.251.144>
- >Date: 26 Feb 96 18:58:38 GMT
- >Sender: news@biosys.apldbio.COM
- >Lines: 8
- >Status: N
- >
- >
- > I saw this syntax first time in MSVC++, MFC 4.0 source code.
- >They are all over the code relates to the OLE.
- >
- >Is this C++ standard or just some microsoftism?
- >
- > -Tony
- >
-
- If you have nested classes, this is the syntax to invoke
- a method of inner class.
-
- class A
- {
- class B
- {
- Memeber();
- };
- };
-
- A::B::Member()
- {
- ...
- }
-
-
-
- =~=~=~=~=~=~=~=~=~=~==~=~=~=~=~=~=~=~=
- K. Muthu Kumar
- 14 Shreeji Apartments,
- Kondi Vitta Village,
- Bombay - 59.
- INDIA.
- Ph: (O) +91-22-836 78 42
- (R) +91-22-839 08 21
- Internet: muthu@mbtpost.agw.bt.co.uk
- =~=~=~=~=~=~=~=~=~=~==~=~=~=~=~=~=~=~=
-